home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / lib / mntlib44.zoo / mntlib / vfprintf.c < prev    next >
C/C++ Source or Header  |  1993-10-12  |  174b  |  14 lines

  1. #include <stdio.h>
  2. #include <stdarg.h>
  3. #include "lib.h"
  4.  
  5.  
  6. int
  7. vfprintf(fp, fmt, args)
  8.     FILE *fp;
  9.     const char *fmt;
  10.     va_list args;
  11. {
  12.     return(_doprnt(fputc, fp, fmt, args));
  13. }
  14.